home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / cross / GBDK-2.0.lha / GBDK / lib / strcpy.c < prev    next >
C/C++ Source or Header  |  1998-10-01  |  208b  |  18 lines

  1. #include <string.h>
  2.  
  3. /*
  4. /*
  5.  * Copy string s2 to s1. s1 must be large enough.
  6.  * Return s1.
  7.  */
  8.  
  9. char *strcpy(char *s1, const char *s2)
  10. {
  11.   char *os1;
  12.  
  13.   os1 = s1;
  14.   while(*s1++ = *s2++)
  15.     ;
  16.   return os1;
  17. }
  18.